home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Pro 2005 June (DVD)
/
DPPRO0605DVD.iso
/
Install
/
program files
/
Borland
/
BDS
/
3.0
/
Demos
/
Delphi.Net
/
VCL
/
CustomDraw
/
customdraw.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2004-10-22
|
347 b
|
16 lines
program CustomDraw;
{%DotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Windows.Forms.dll'}
uses
Forms,
CustomDrawTreeView in 'CustomDrawTreeView.pas' {CustomDrawForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TCustomDrawForm, CustomDrawForm);
Application.Run;
end.